home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 February / maximum-cd-2012-02.iso / DiscContents / TheWagerSetup1.2.exe / Assets / Scripts / [66].lua < prev    next >
Encoding:
Text File  |  2011-11-07  |  1.3 KB  |  25 lines

  1. -- Script [66]
  2. Starting = 0;
  3. SeaEvent = 0;
  4.  
  5. if (math.random(1, 100) <= 50) then
  6.  
  7.   ShowStoryText("You discover many strange things in your investigations, most broken up or unidentifiable. There are parts of what seems to be a metallic blue orb, and some pylons of a similar design. Then there are the bones of a creature you cannot readily identify, inside some great metal machine. Wondering what happened here, you take the most readily available pieces with you, including the skull of the strange being, which one of your crew names 'Rorger' for reasons only known to him. They may fetch a price, or even come in handy.");
  8.   
  9.   AddInventory("{19}");
  10.   AddInventory("{6}");
  11.   AddInventory("{7}");
  12.  
  13.   AddCaptainsLog("You discover a Rorger skull while exploring some pre-Shattering ruins.");
  14.  
  15. else
  16.  
  17.   ShowStoryText("Several days of exploring here reveal that there's nothing but junk to be found. There are hints of what could be something interesting - some nice structures, or a broken vase that could have been a good find if intact, but you waste a week and find not a single thing that could be described as treasure. Too bad.");
  18.  
  19.   AddDays(7);
  20.   
  21.   AddCaptainsLog("You waste a week exploring some pre-Shattering ruins, but find nothing of value.");
  22.  
  23. end
  24.  
  25.